std::queue::push

From Cppreference

Jump to: navigation, search
void push( const T& value );

void push( T&& value );
(C++0x)

Pushes the given element value to the end of the queue.

1) Effectively calls ​c.push_back(value)

2) Effectively calls ​c.push_back(std::move(value))

Contents

Parameters

value - the value of the element to push

Return value

(none)

Complexity

See also

emplace (C++0x)
constructs element in-place at the end
(public member function)
pop
removes the first element
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages